home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Computer Select (Limited Edition)
/
Computer Select.iso
/
pcc
/
v04n12
/
batch2.exe
/
CHEKYES.BAT
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
DOS Batch File
|
1991-10-12
|
241 b
|
14 lines
@ECHO OFF
REM This is CHEKYES.BAT
IF %1!==! GOTO OOPS
FOR %%A IN (Y y Yes yes YES) DO IF %1==%%A GOTO YES
ECHO You didn't enter Yes
GOTO END
:YES
ECHO You entered Yes
GOTO END
:OOPS
ECHO You didn't enter anything
GOTO END
:END